Full text search for "Epson L3156 Driver for Ubuntu"

FrontPagePrestoAndHiveTrainingSessionModule04.S/WArchitectureTClockExcss Epson L3156 Driver for Ubuntu


Search BackLinks only
Display context of search results
Case-sensitive searching
  • EclipseJavaCodeStyleFormatter . . . . 397 matches
         [spring eclipse code formatter]
         <profile name="kiki-format" version="10">
         <setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="16"/>
  • MoniWikiPo . . . . 186 matches
         #format po
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
         #, c-format
  • OurSoftwareDependencyProblem . . . . 69 matches
         For decades, discussion of software reuse was far more common than actual software reuse.
         developers reuse software written by others every day, in the form of software dependencies, and the situation goes mostly unexamined.
         My own background includes a decade of working with Google’s internal source code system, which treats software dependencies as a first-class concept,1 and also developing support for dependencies in the Go programming language.2
         The shift to easy, fine-grained software reuse has happened so quickly that we do not yet understand the best practices for choosing and using dependencies effectively, or even for deciding when they are appropriate and when not.
         For a program that needs the functionality provided by one of these packages, the tedious work of manually downloading, installing,
         For example, the Node.js dependency manager NPM provides access to over 750,000 packages.
         Before dependency managers, publishing an eight-line code library would have been unthinkable: too much overhead for too little benefit. But NPM has driven the overhead approximately to zero, with the result that nearly-trivial functionality can be packaged and reused. In late January 2019, the escape-string-regexp package is explicitly depended upon by almost a thousand other NPM packages, not to mention all the packages developers write for their own use and don’t share.
         Dependency managers now exist for essentially every programming language. Maven Central (Java), Nuget (.NET), Packagist (PHP), PyPI (Python), and RubyGems (Ruby) each host over 100,000 packages. The arrival of this kind of fine-grained, widespread software reuse is one of the most consequential shifts in software development over the past two decades. And if we’re not more careful, it will lead to serious problems.
         A package, for this discussion, is code you download from the internet. Adding a package as a dependency outsources the work of developing that code—designing, writing, testing, debugging, and maintaining—to someone else on the internet, someone you often don’t know. By using that code, you are exposing your own program to all the failures and flaws in the dependency. Your program’s execution now literally depends on code downloaded from this stranger on the internet. Presented this way, it sounds incredibly unsafe. Why would anyone do this?
         Decades ago, most developers already trusted others to write software they depended on, such as operating systems and compilers. That software was bought from known sources, often with some kind of support agreement. There was still a potential for bugs or outright mischief,3 but at least we knew who we were dealing with and usually had commercial or legal recourses available.
         The phenomenon of open-source software, distributed at no cost over the internet, has displaced many of those earlier software purchases. When reuse was difficult, there were fewer projects publishing reusable code packages. Even though their licenses typically disclaimed, among other things, any “implied warranties of merchantability and fitness for a particular purpose,” the projects built up well-known reputations that often factored heavily into people’s decisions about which to use. The commercial and legal support for trusting our software sources was replaced by reputational support. Many common early packages still enjoy good reputations: consider BLAS (published 1979), Netlib (1987), libjpeg (1991), LAPACK (1992), HP STL (1994), and zlib (1995).
         Dependency managers have scaled this open-source code reuse model down: now, developers can share code at the granularity of individual functions of tens of lines. This is a major technical accomplishment. There are myriad available packages, and writing code can involve such a large number of them, but the commercial, legal, and reputational support mechanisms for trusting the code have not carried over. We are trusting more code with less justification for doing so.
         The context where a dependency will be used determines the cost of a bad outcome. At one end of the spectrum is a personal hobby project, where the cost of most bad outcomes is near zero: you’re just having fun, bugs have no real impact other than wasting some time, and even debugging them can be fun. So the risk probability almost doesn’t matter: it’s being multiplied by zero. At the other end of the spectrum is production software that must be maintained for years. Here, the cost of a bug in a dependency can be very high: servers may go down, sensitive data may be divulged, customers may be harmed, companies may fail. High failure costs make it much more important to estimate and then reduce any risk of a serious failure.
         No matter what the expected cost, experiences with larger dependencies suggest some approaches for estimating and reducing the risks of adding a software dependency. It is likely that better tooling is needed to help reduce the costs of these approaches, much as dependency managers have focused to date on reducing the costs of download and installation.
         You would not hire a software developer you’ve never heard of and know nothing about. You would learn more about them first: check references, conduct a job interview, run background checks, and so on. Before you depend on a package you found on the internet, it is similarly prudent to learn a bit about it first.
         A basic inspection can give you a sense of how likely you are to run into problems trying to use this code. If the inspection reveals likely minor problems, you can take steps to prepare for or maybe avoid them. If the inspection reveals major problems, it may be best not to use the package: maybe you’ll find a more suitable one, or maybe you need to develop one yourself. Remember that open-source packages are published by their authors in the hope that they will be useful but with no guarantee of usability or support. In the middle of a production outage, you’ll be the one debugging it. As the original GNU General Public License warned, “The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction.”4
         Is package’s documentation clear? Does the API have a clear design? If the authors can explain the package’s API and its design well to you, the user, in the documentation, that increases the likelihood they have explained the implementation well to the computer, in the source code. Writing code for a clear, well-designed API is also easier, faster, and hopefully less error-prone. Have the authors documented what they expect from client code in order to make future upgrades compatible? (Examples include the C++5 and Go6 compatibility documents.)
         Develop your own systematic ways to check code quality. For example, something as simple as compiling a C or C++ program with important compiler warnings enabled (for example, -Wall) can give you a sense of how seriously the developers work to avoid various undefined behaviors. Recent languages like Go, Rust, and Swift use an unsafe keyword to mark code that violates the type system; look to see how much unsafe code there is. More advanced semantic tools like Infer7 or SpotBugs8 are helpful too. Linters are less helpful: you should ignore rote suggestions about topics like brace style and focus instead on semantic problems.
         Keep an open mind to development practices you may not be familiar with. For example, the SQLite library ships as a single 200,000-line C source file and a single 11,000-line header, the “amalgamation.” The sheer size of these files should raise an initial red flag, but closer investigation would turn up the actual development source code, a traditional file tree with over a hundred C source files, tests, and support scripts. It turns out that the single-file distribution is built automatically from the original sources and is easier for end users, especially those without dependency managers. (The compiled code also runs faster, because the compiler can see more optimization opportunities.)
         Does the code have tests? Can you run them? Do they pass? Tests establish that the code’s basic functionality is correct, and they signal that the developer is serious about keeping it correct. For example, the SQLite development tree has an incredibly thorough test suite with over 30,000 individual test cases as well as developer documentation explaining the testing strategy.9 On the other hand, if there are few tests or no tests, or if the tests fail, that’s a serious red flag: future changes to the package are likely to introduce regressions that could easily have been caught. If you insist on tests in code you write yourself (you do, right?), you should insist on tests in code you outsource to others.
  • HelpOnLinking . . . . 32 matches
         If you enclose a sequence of characters in square brackets and double quotes {{{["like this"]}}}, that makes it a page name. That can be used for specific uses of MoinMoin (like organizing a list of items, e.g. your CD collection, by their "natural" name), or if you want to create a wiki with a non-western character encoding.
         If you enter URLs into normal text, there is the problem of detecting what belongs to the URL and what not. There are four ways to force the ending of an URL:
         In addition to the standard schemas, there are MoinMoin-specific ones: `wiki:`, `attachment:`. "`wiki:`" indicates an InterWiki link, so `MoniWiki:FrontPage` and `wiki:MoniWiki:FrontPage` are equivalent; you will normally prefer the shorter form, the "`wiki`" scheme becomes important when you use bracketed links, since there you always need a scheme. The other three schemes are related to file attachments and are explained on HelpOnActions/AttachFile.
         You can surpress WikiName linking by putting an exclamation mark (''bang'') before the WikiName, i.e. {{{!WikiName}}} `!WikiName`. and you can force linking by putting a question mark before any word, i.e. {{{?Hello}}} `?Hello`.
         /!\ MoinMoin does not support force linking feature.
         For more information on the possible markup, see HelpOnEditing.
          * http://moniwiki.sourceforge.net/
          * [http://moniwiki.sourceforge.net/]
          * [http://moniwiki.sourceforge.net/ MoniWiki Sourceforge Homepage]
          * http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * http://moniwiki.sourceforge.net/
          * [http://moniwiki.sourceforge.net/]
          * [http://moniwiki.sourceforge.net/ MoniWiki Sourceforge Homepage]
          * http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif moniwiki-logo.gif]
          * [http://moniwiki.sourceforge.net/ http://moniwiki.sourceforge.net/imgs/moniwiki-logo.gif]
  • CleanArchitecture-2020 . . . . 28 matches
         In every case, the best option is for the development organization to recognize and avoid its own overconfidence and to start taking the quality of its software architecture seriously.
         To build a system with a design and an architecture that minimize effort and maximize productivity, you need to know which attributes of system architecture lead to that end.
         make machines behave in a way that makes or saves money for the stakeholders
          * Fight For the Architecture
         If that is allowed to happen, it means the software development team did not fight hard enough for what they knew was necessary.
          * Food for Thought
          * No Formal Proofs
         At every level, from the smallest function to the largest component, software is like a science and, therefore, si diven by falsifiability.
         OO allows the plugin architecture to be used anywhere, for anything.
         Before a safe and convenient mechanism for polymorphism was avilable.
         If we have enough storage and enough processor power, we can make our applications entirely immutable - and, therefore, entirely functional.
         The SRP is about functions and classes - but it reappears in a different form at two more levels.
         At the architectural level, it becomes the Axis of Change responsible for the creation of Architectural Boundaries.
         A software artifact should be open for extension but closed for modification.
         A change to the source code of op2 in OPS will force User1 to be recompiled and redeployed, even though nothing that it cared about has actually changed.
         Gather into components those classes that change for the same reasons and at the same times.
         Separate into different components those classes that change at different times and for different reasons.
         Don't force users of a component to depend on things they don't need.
         The form of that shape is in the division of that system into components, the arrangement of those components, and the ways in which those components communicate with each other.
         The strategy behind that facilitation is to leave as many options open as possible, for as long as possible.
  • FortuneCookies . . . . 26 matches
          * Good fortune in love, as well as a better position.
          * If you always postpone pleasure you will never have it. Quit work and play for once!
          * Stop searching forever. Happiness is just next to you.
          * He who invents adages for others to peruse takes along rowboat when going on cruise.
          * Of all forms of caution, caution in love is the most fatal.
          * Stop searching forever. Happiness is unattainable.
          * A man who fishes for marlin in ponds will put his money in Etruscan bonds.
          * You will be honored for contributing your time and skill to a worthy cause.
          * You will be awarded a medal for disregarding safety in saving someone.
          * You will be imprisoned for contributing your time and skill to a bank robbery.
          * It is Fortune, not wisdom that rules man's life.
          * Your mode of life will be changed for the better because of good news soon.
          * You have been selected for a secret mission.
          * There will be big changes for you but you will be happy.
          * The luck that is ordained for you will be coveted by others.
          * You are scrupulously honest, frank, and straightforward.
          * If it pours before seven, it has rained by eleven.
          * You shall be rewarded for a dastardly deed.
          * You will be singled out for promotion in your work.
          * When the wind is great, bow before it; when the wind is heavy, yield to it.
  • ProcMailSample1 . . . . 18 matches
         |/usr/bin/formail - I "Content-Transfer-Encoding: 8bit" -A "X-Automatic-MIME-Conversion-by-procmail: QP to 8bit"
         |/usr/bin/formail -I "Content-Transfer-Encoding: 8bit" -A "X-Automatic-MIME-Conversion-by-procmail: Base64 to 8bit"
         |/usr/bin/formail -c -I "Content-Type: text/plain; charset=EUC-KR" -I "Content-Transfer-Encoding: 8bit"
         |/usr/bin/formail -c -I "Content-Type: text/html; charset=EUC-KR" -I "Content-Transfer-Encoding: 8bit"
         |/usr/bin/formail -c -I "Content-Type: text/plain; charset=EUC-KR" -I "Content-Transfer-Encoding: 8bit"
         |/usr/bin/formail -A "X-Automatic-Korean-Mail-Conversion: iso-2022-kr to euc-kr"
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         #|/usr/bin/formail -c | /usr/bin/hcode -dk -m
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         |/usr/bin/formail -c | /usr/bin/hcode -dk -m
         * ^Subject:.*[Tt]he [Nn]ew [Xx]erox [Uu]pdate for our [Ww]inXP$
         * ^Subject: searching for true Love$
         * ^Subject: Dont wait for long time$
         * ^Subject: Looking for Friendship$
         * ^Subject: I am For u$
         * ^Subject: Life for enjoyment$
         * ^Subject: Let's Dance and forget pains$
         * ^Subject: Are you looking for Love$
         * ^Subject: for you$
  • Spring3.0특징요약 . . . . 16 matches
          for (Cookie cookie : cookies) {
          New for @RequestParam
          Standard issue for @RequestHeader and @CookieValue
          return "spittle/form";
         스프링 form 태그에서 이 기능을 지원하기 때문에 form 태그의 method에 delete, put도 사용 가능.
         <form:form method="delete">
         </form:form>
          Spring MVC form tags support hidden HTTP methods
          <form:form method="delete">
          </form:form>
          content type, format parameter, or request path
          template.getForObject("http://localhost:8080/spitter/users/${id}", String.class, userId);
          template.postForLocation("http://localhost:8080/spitter/users/${id}", user, userId);
  • classloader.jsp . . . . 14 matches
         <%@ page import="java.text.SimpleDateFormat"%>
         <title>Nextree Classloader Information</title>
         <p class="c_title">Nextree Classloader Information</p>
         <form>
         </form>
          for(int i = 0; i < classLoaders.size(); i++) {
          for(int i = 0; i < bootClasses.size(); i++) {
          for(int i = 0; i < extClasses.size(); i++) {
          for(int i = 0; i < appClasses.size(); i++) {
          private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
          result.put("X_FILE_DATE", sdf.format(new Date(file.lastModified())));
          for(ClassLoader cl = getClass().getClassLoader(); cl != null; cl = cl.getParent())
          for(; st.hasMoreTokens(); result.add(st.nextToken()));
          Class c = Class.forName(className.trim());
          for(ClassLoader cl = c.getClassLoader(); cl != null; cl = cl.getParent())
          for(int i = 0; i < allFiles.length; i++)
  • (번역)PleaseStopCallingDatabasesCPOrAP . . . . 13 matches
         For more detail on problems with CAP, and a proposal for an alternative, please see my paper [https://arxiv.org/abs/1509.05393 A Critique of the CAP Theorem].
         In his excellent blog post [https://www.somethingsimilar.com/2013/01/14/notes-on-distributed-systems-for-young-bloods/ Notes on Distributed Systems for Young Bloods], Jeff Hodges recommends that you use the [https://henryr.github.io/cap-faq/ CAP theorem] to critique systems.
         [[br]]-- Jeff Hodges의 훌륭한 블로그 글 [https://www.somethingsimilar.com/2013/01/14/notes-on-distributed-systems-for-young-bloods/ 초보를 위한 분산시스템에 대한 노트]에서 그는 여러분이 시스템을 평가하는데 [https://henryr.github.io/cap-faq/ CAP 이론]을 사용하기를 권고하고 있습니다.
         The CAP theorem is too simplistic and too widely misunderstood to be of much use for characterizing systems.
         Therefore I ask that we retire all references to the CAP theorem, stop talking about the CAP theorem, and put the poor thing to rest.
          In particular it has got nothing to do with the C in ACID, even though that C also stands for “consistency”.
          It’s not sufficient for some node to be able to handle the request: any non-failing node needs to be able to handle it.
          For example, the CAP theorem says nothing about transactions that touch multiple objects: they are simply out of scope of the theorem, unless you can somehow reduce them down to a single register.
         It just means that you can’t turn to the CAP theorem for guidance, and you cannot use the CAP theorem to justify your point of view.
         The formal definition is not entirely straightforward, but the key idea, stated informally, is this:
         However, Bob knows that he hit the reload button (initiated his query) after he heard Alice exclaim the final score, and therefore he expects his query result to be at least as recent as Alice’s.
  • WikiSlide . . . . 13 matches
          * a technology for collaborative creation of internet and intranet pages
          * '''Easy''' - no HTML knowledge necessary, simply formatted text
          * '''Simple''' - ''Content over Form'' (content counts, not the super-pretty appearance)
          * Personal Information Management, Knowledgebases, Brainstorming
          * Collaboration, Coordination and Communication platform
          * Email address for subscribing to page change emails and retrieving a lost login/password
         To edit a page, just click on [[Icon(edit)]] or on the link "`EditText`" at the end of the page. A form will appear enabling you to change text and save it again. A backup copy of the previous page's content is made each time.
         <!> After editing pages, please leave the edit form by "`Save Changes`" since otherwise your edits will be lost!
         "`Check spelling`" examines the text for unknown words.
         (!) If you discover an interesting format somewhere, just use the "raw" icon to find out how it was done.
         To add special formatting to text, just enclose it within markup. There are special notations which are automatically recognized as internal or external links or as embedded pictures.
         For details see HelpOnFormatting, HelpOnLinking and HelpOnSmileys.
         Preformatted text (e.g. a copy of an email) should be placed inside three curly braces `{{{ ... }}}`: {{{
         For better visual separation, horizontal lines can be generated by using four dashes.
         For details see HelpOnLists.
         For details see HelpOnTables.
         For details see HelpOnMacros.
         For details see HelpOnPageCreation and WikiName.
          * `SpellCheck`: Call check spelling for the current page (HelpOnSpellCheck)
         For details see HelpOnActions.
  • HelpOnUserPreferences . . . . 10 matches
          * '''[[GetText(Name)]]''': Either your real name or an alias. Best is to use WikiName format.
          * '''[[GetText(Password)]]''': Something you can remember but is very hard for friends and family to guess.
          * '''[[GetText(Email)]]''': Your email address, this is required if you wish to subscribe to wiki pages or wish to have a forgotten login data mailed to you.
          * '''[[GetText(Date format)]]''': The default of year-month-day is least confusing for international use.
          * '''[[GetText(Quick links)]]''': Overrides the standard choices in the gray navigation bar at the top of the page. Enter one Wiki page name per line. You may also add free-form links, i.e. entries of the form `[url linktext]` just like in wiki pages.
          * '''[[GetText(Subscribed wiki pages (one regex per line))]]''': Enter '''`.*`''' to receive an email when any page in this Wiki changes (''not recommended'' for busy wikis), or enter the names of any individual pages, one per line. If you are familiar with '''regular expressions''', you may enter a regex expression to match the pages names of interest (.* matches all page names). With the '''[[GetText(Show icon toolbar)]]''' option checked, subscription to individual pages is made easy by clicking the envelope icon when viewing a page of interest.
         /!\ This is an optional feature that only works when email support has enabled for this wiki, see HelpOnConfiguration/EmailSupport for details.
  • eclipse-keys . . . . 10 matches
         "Run/Debug","Force Return","Shift+Alt+F","In Windows"
         "Edit","Context Information","Shift+Ctrl+Space","In Dialogs and Windows"
         "Manifest Editor Source","Format Source","Shift+Ctrl+F","PDE editor"
         "Run/Debug","Debug XSLT Transformation","Shift+Alt+D X","In Windows"
         "Edit","Format","Shift+Ctrl+F","Editing in Structured Text Editors"
         "Source","Format","Shift+Ctrl+F","Editing JavaScript Source"
         "Navigate","Search Repository for Task","Shift+Ctrl+F12","In Windows"
         "Run/Debug","Run XSLT Transformation","Shift+Alt+X X","In Windows"
         "Navigate","Forward History","Alt+Right","In Windows"
         "Source","Format","Shift+Ctrl+F","Editing Ant Buildfiles"
         "Source","Format","Shift+Ctrl+F","Editing Java Source"
         "Edit","Format Active Elements","Ctrl+I","Editing in Structured Text Editors"
         "Source","Format","Esc Ctrl+F","Editing JavaScript Source"
         "Uncategorized","Add Artifact to Target Platform","Shift+Ctrl+Alt+A","In Windows"
         "Source","Format","Ctrl+Shift+F","Editing Ant Buildfiles"
         "Manifest Editor Source","Format Source","Ctrl+Shift+F","PDE editor"
         "Edit","Context Information","Ctrl+Shift+Space","In Dialogs and Windows"
         "Edit","Format","Ctrl+Shift+F","Editing in Structured Text Editors"
         "Source","Format","Ctrl+Shift+F","Editing JavaScript Source"
         "Edit","Format Active Elements","Ctrl+I","Editing in Structured Text Editors"
  • BadContent . . . . 9 matches
         #format plain
         ([\w\-_.]+\.)?(l(so|os)tr)\.[a-z]{2,} # Catchall regex for lsotr.xxx and lostr.xxx with or without a subdomain
         (buy)[\w\-_.]*online[\w\-_.]*\.[a-z]{2,} # Catchall regexp for many spam sites
         (diet|penis)[\w\-_.]*(pills|enlargement)[\w\-_.]*\.[a-z]{2,} # Catchall regexp for many spam sites
         (levitra|lolita|phentermine|viagra|vig-?rx|zyban|valtex|xenical|adipex|meridia\b)[\w\-_.]*\.[a-z]{2,} # Super regexp for domains containing levitra, lolita, phentermine, viagra, vigrx, vig-rx, zyban, valtex, xenical, adipex and meridia
         (mike)[\w\-_.]*apartment[\w\-_.]*\.[a-z]{2,} # Catchall regexp for Mike's Apartment variations
         (online)[\w\-_.]*casino[\w\-_.]*\.[a-z]{2,} # Catchall regexp for a hundred online casino sites
         (prozac|zoloft|xanax|valium|hydrocodone|vicodin|paxil|vioxx)[\w\-_.]*\.[a-z]{2,} # Super regexp for domains containing prozac, zoloft, xanax, valium, hydrocodone, vicodin, paxil, vioxx
         (ragazze)-?\w+\.[a-z]{2,} # Catchall regexp for many spam sites
  • HelpOnActions . . . . 9 matches
         There is a set of system-defined actions, which includes page editing; you can extend the set of known actions by your own ones. See HelpForDevelopers for more on that.
         The following actions are added to the list of user-defined extension actions at the bottom of each page or other position defend on your selected theme. This happens to any mixed-case extension, for other actions (all lower-case) see the list further down this page. Some of these action might not be available for this wiki site.
          * `!UploadFile`: upload files to a page, see UploadFile for more details.
          * `userform`: save user preferences.
          * `bookmark`: set bookmark for RecentChanges.
          * `raw`: send the raw wiki markup as text/plain (e.g. for backup purposes via wget); Self:SystemInfo?action=raw shows the markup of SystemInfo.
         for more information about actions See MoniWiki:MoniWikiActions
  • Useful Software . . . . 9 matches
          * Nimble Commander - for Mac
          *[^http://winmerge.sourceforge.net/ WinMerge] : 강력한 파일 및 폴더 비교 및 동기화
          * VirtualDub : a video capture/processing utility for 32-bit Windows platforms
          * OGM to AVI / MKV to AVI : http://ogmtoavi.sourceforge.net/
          * KDE Connect(for linux and android), Soduto(for mac): clipboard auto sharing between devices(mac, android, linux) - https://soduto.com/
          * CopyQ: clipboard manager for Ubuntu
          * pdf995 : pdf priter driver ([^http://www.pdf995.com])
          * PrimoPDF : pdf printer driver [^http://www.primopdf.com/]
  • WebUploadStreamFormat . . . . 9 matches
         Referer: http://upload_form.do
         Content-Type: multipart/form-data; boundary=---------------------------7d91197f07e0
         Content-Disposition: form-data; name="lvl"
         Content-Disposition: form-data; name="teme"
         Content-Disposition: form-data; name="wrt_nm"
         Content-Disposition: form-data; name="e_mail"
         Content-Disposition: form-data; name="contn1"
         Content-Disposition: form-data; name="attach"; filename="D:\ngdm_test.txt"
         Content-Disposition: form-data; name="pwd"
  • Ajax관련사이트 . . . . 8 matches
         http://zk1.sourceforge.net/
         http://sourceforge.net/projects/zk1/
         http://sourceforge.net/projects/taconite
         http://httpunit.sourceforge.net/ => HttpUnit 테스팅 프레임웍
         http://jwebunit.sourceforge.net/ => 웹 테스팅 프레임웍으로 자바 개바자라면 추천해 본다.
         http://chrispederick.com/work/webdeveloper/ => Web Developer Extension for FireFox 으로써 파이어폭스 브라우저가 제공해 주는 다양한 기능의 툴바를 다운/설치할 수 있는 싸이트이다.
         http://jsdoc.sourceforge.net/ => javadoc 명령으로 HTML API를 생성하듯이 자바스크립트의 주석을 바탕으로 HTML 다큐먼트를 생성하는 오픈소스
         http://jsdoc.sourceforge.net/ => jsDoc
  • CvsCommand . . . . 8 matches
         update and checkout keep you informed of their progress by printing a line for each file, preceded by one character indicating the status of the file:
          The file was brought up to date with respect to the repository. This is done for any file that exists in the repository but not in your source, and for files that you haven't changed but are not the most recent versions available in the repository.
          M can indicate one of two states for a file you're working on: either there were no modifications to the same file in the repository, so that your file remains as you last saw it; or there were modifications in the repository as well as in your copy, but they were merged successfully, without conflict, in your working directory.
          cvsnt will print some messages if it merges your work, and a backup copy of your working file (as it looked before you ran update) will be made. The exact name of that file is printed while update runs.
          A conflict was detected while trying to merge your changes to file with changes from the source repository. file (the copy in your working directory) is now the result of attempting to merge the two revisions; an unmodified copy of your file is also in your working directory, with the name .#file.revision where revision is the revision that your modified file started from. Resolve the conflict as described in the section called “Conflicts example ”. (Note that some systems automatically purge files that begin with .# if they have not been accessed for a few days. If you intend to keep a copy of your original file, it is a very good idea to rename it.) Under vms, the file name starts with __ rather than .#.
          file is in your working directory, but does not correspond to anything in the source repository, and is not in the list of files for cvsnt to ignore (see the description of the -I option, and the section called “Ignoring files via cvsignore ”)
  • HelpForBeginners . . . . 8 matches
         A WikiWikiWeb is a collaborative hypertext environment, with an emphasis on easy access to and modification of information.
         You can edit any page by pressing the link at the bottom of the page. Capitalized words joined together form a WikiName, which hyperlinks to another page. The highlighted title searches for all pages that link to the current page. Pages which do not yet exist are linked with a question mark (or a different rendering in bold red): just follow the link and you can add a definition. That is also the way to create a new page: add a new WikiName to an existing page, save your modification, click on your new link and create the page (more details on HelpOnPageCreation).
         This wiki is also part of the InterWiki space, which means you can easily refer to a wealth of information available through other public wiki sites.
         For more help, see the HelpContents and the HelpIndex pages.
         A WikiName is a word that uses capitalized words. WikiName''''''s automagically become hyperlinks to the WikiName's page. What exactly is an uppercase or lowercase letter is determined by the configuration, the default configuration works for Latin-1 (ISO-8859-1) characters. See below for how to handle Asian, Hebrew and other non-western character encodings.
         When you click on the highlighted page title (i.e. HelpForBeginners on this page), you will see a list of all pages that link to the current page. This even works on pages that are not defined yet.
         A question mark before a link, or a different rendering in bold red, means that the page is not yet defined: you can click the question mark to offer a definition (e.g., NoSuchPageForReal). If you click on such a link, you'll see a default page that you can edit; only after you save the page will it be created for real. A list of all pages that are not yet created but referred on another page is on WantedPages.
  • HelpOnProcessingInstructions . . . . 8 matches
          * {{{#FORMAT}}} ''format-specifier'': defines the input format for this page, known formats are:
         All !PIs must appear at the very start of a page. An exception are comment !PIs, those may appear within a wiki page (but obviously not in pages using other formats).
          * {{{#!}}}''processor-name'': same as {{{#format}}} ''formatter''
         For more information on the possible markup, see HelpOnEditing.
  • Missing Value Handling . . . . 8 matches
         cols_with_missing = [col for col in X_train.columns
         imputed_X_train = pd.DataFrame(my_imputer.fit_transform(X_train)) # same as fit() and transform()
         imputed_X_valid = pd.DataFrame(my_imputer.transform(X_valid)
         cols_with_missing = [col for col in X_train.columns
         for col in cols_with_missing:
         imputed_X_train_plus = pd.DataFrame(my_imputer.fit_transform(X_train_plus))
         imputed_X_valid_plus = pd.DataFrame(my_imputer.transform(X_valid_plus))
  • PrestoAndHiveTrainingSession . . . . 8 matches
         # Optimize file format in storage
         - Row-Oriented : Good for data processing & transformation
         - Column-Oriented: Good for analytic and aggregation functions
         ex) describe formatted ods.cs_cancel_order_status partition (regdttm_day = 20190101);
         Hive on Tez(or MR) : best for batch processing
         Presto : Best for adhoc queris (결과 set이 적은 경우)
         SparkSQL: best for batch processing(if you know resource requirement)
  • awk . . . . 8 matches
         OFMT Output format for numbers (default %.6g). If
          format specification, the results are
         CONVFMT Internal conversion format for numbers (default
          floating-point format specification, the
         SUBSEP The subscript separator string for multi-
          argument matches the format of an assignment
          names. For example, if environment variable
  • gvim.bat . . . . 8 matches
         rem collect the arguments in VIMARGS for Win95
         set VIMNOFORK=
         if NOT .%1==.-f goto noforkarg
         set VIMNOFORK=1
         :noforkarg
         if .%VIMNOFORK%==.1 goto nofork
         :nofork
         rem for WinNT we can use %*
         if .%VIMNOFORK%==.1 goto noforknt
         :noforknt
         set VIMNOFORK=
  • jEdit . . . . 8 matches
         JTidyPlugin - HTML과 XML에서 매칭되는 태그를 표시 http://jtidy.sourceforge.net/
         options.pmd.rules.UnusedFormalParameter=true
         fastopen.openFiles.foregroundcolor=\#000000
         options.pmd.rules.ForLoopShouldBeWhileLoop=true
         view.status.foreground=\#000000
         javastyle.formatOnSave=false
         options.pmd.rules.ForLoopsMustUseBracesRule=true
         navigator.forward.shortcut=AS+RIGHT
         view.toolbar=new-file open-file close-buffer save - print page-setup - undo redo cut copy paste - find find-next - new-view unsplit split-horizontal split-vertical - navigator.back navigator.forward
         fastopen.nonprjOpenFiles.foregroundcolor=\#00b200
         navigator.forward.icon=ArrowR.png
  • EpsonL3156NetworkIssue-20101129 . . . . 7 matches
         #keywords Epson, Printer, L3156, L3150
         cf. ["Epson L3156 Driver for Ubuntu"]
  • JWSDP . . . . 7 matches
          * Java API for XML Binding(JAXB) : java class를 xml문서로 marshaling 혹은 반대(unmarshaling) 기능 제공
          * Java API form XML Messaging(JAXM) : 비동기적 웹서비스 구현위한 api와 도구
          * Soap with Attachments API form Java(SAAJ) : SOAP 메시지 생성 및 전송, 요청/응답형의 동기적 통신
          * Java API for XML Processing(JAXP) : DOM, SAX(Simplle API for XML) 파서 제공, 기본적으로 Apache Group의 Xerces2파서를 사용한다. XSLT관련 api도 제공하며 기본적으로 Xalan이 사용됨
          * Java API for XML Registries(JAXR) : XML 레지스트리에 일관되게 접근하여 정보검색, 저장하도록 하는 표준 java api제공, xml 레지스트리 종류는 [ebXML]과 [UDDI]레지스트리가 있다
          * Java API for XML-based RPC(JAX-RPC) : [RPC](Remote Procedure Call)방식의 웹서비스 시스템 및 클라이언트 개발 api, [WSDL]문서 자동 생성, Tie(클라이언트와 통신 담당) 클래스를 자동 생성, war 파일 생성 기능, 클라이언트를 쉽게 이용하도록 자동으로 Stub 만들어줌
  • 영어일기-01 . . . . 7 matches
         The weather forecast called for scattered showers.
         * the weather forecast 일기예보
         * called for + 명사 ~을 부른다, ~을 요구한다
         The weather forecast called for heavy snow.
         The rain did not let up for hours.
  • EpsonPrinter . . . . 6 matches
         #keywords Epson Printer
         [Epson L3156 Network Issue - 20101129]
         EpsonAcuLaserC1700DriverForUbuntu
  • HelpOnFormatting . . . . 6 matches
         [moniwiki] > [moniwiki formatting]
         == Text Formatting Rules ==
         To insert program source without reformatting in a {{{monospace font}}}, use three curly braces:
         Note that within code sections, both inline and display ones, any wiki markup is ignored. An alternative and shorter syntax for `inlined code` is to use backtick characters.
         For more information on the possible markup, see HelpOnEditing.
         /!\ In the above example, we "escaped" the markers for source code sequences by inserting \ character before the curly braces.
  • HelpOnLists . . . . 6 matches
         Definition lists can be created by items of the form {{{<whitespace>term:: definition}}}
         For more information on the possible markup, see HelpOnEditing.
          I.#42 forty-two
          I. forty-three
          I.#42 forty-two
          I. forty-three
  • JavaFileUpload-ClientSide . . . . 6 matches
         [web upload stream format]
          conn.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
          dos.writeBytes("Content-Disposition: form-data; name=\"upload\";"
          // read file and write it into form...
          // send multipart form data necesssary after file data...
         catch (MalformedURLException ex) {
  • SOLID . . . . 6 matches
         software entities … should be open for extension, but closed for modification.
          - 열려있다 : 확장이 가능한 상태. (wikipedia) A module will be said to be open if it is still available for extension. For example, it should be possible to add fields to the data structures it contains, or new elements to the set of functions it performs.
          - 닫혀있다 : 다른 모듈에 의해 사용가능한 상태. 잘 정의되고 안정적인 디스크립션(interface)을 가지고 있다. (wikipeda) A module will be said to be closed if it is available for use by other modules. This assumes that the module has been given a well-defined, stable description (the interface in the sense of information hiding).[3]
         ex. JDBC driver : 새로운 구현을 추가하기 쉽다.(열려있다) 추상화된 JDBC API가 정의되어 있다.(닫혀있다)
  • infrared . . . . 6 matches
         InfraRED is a tool for monitoring performance of a J2EE application and diagnosing performance problems. It collects metrics about various aspects of an application's performance and makes it available for quantitative analysis of the application.
         http://infrared.sourceforge.net/
  • ExpectScript/autoLogin . . . . 5 matches
         .pwd_for_svr1 : svr1에 사용되는 passwd가 암호화되어 저장되어 있는 파일 ([Openssl Aes] 같은걸 사용)
         .pwd_for_svr2 : svr2에 사용되는 passwd가 암호화되어 저장되어 있는 파일
         send_user -- "\npassword for decrypt password : "
         set pwdForSvr1 [exec openssl aes-256-cbc -d -pass pass:$pwd -in $env(HOME)/.pwd_for_svr1.enc]
         set pwdForSvr2 [exec openssl aes-256-cbc -d -pass pass:$pwd -in $env(HOME)/.pwd_for_svr2.enc]
         send "$pwdForSvr1\r"
         send "$pwdForSvr2\r"
  • HelpOnEditing . . . . 5 matches
         #keywords help,formatting,editing
         Names of pages have to LookLikeThis. It's called a WikiName. If you write a word that LookLikeThis, it will be automatically turned into a link. More details about this you find on HelpForBeginners.
         The following pages describe the elements (wiki markup) you can use to get special formatting effects:
          * HelpOnFormatting - general text formatting rules
          * HelpOnProcessingInstructions - how to influence page formatting
          * HelpOnSubPages - how to group together related information
  • HelpOnPageCreation . . . . 5 matches
         To create a template, follow the above description and create a page with a name ending in "'''Template'''"[[FootNote(If the wiki administrator changed the default settings, rules for what names are template pages might be different.)]]. This page will then be added to the list of template pages displayed when you try to show a non-existent page. For example, NonExistentHelpPage has a link to HelpTemplate that loads the content of HelpTemplate into the editor box, when you click on that link.
         || @''''''PAGE@ || Name of the page (useful for template pages) ||
         || @''''''DATE@ || Current date in the system's format ||
         || @''''''TIME@ || Current date and time in the user's format ||
         Note that saving template or form definition pages and using preview does ''not'' expand variables. Other than that, variable expansion is very global and happens anywhere on the page, including code displays, comments, processing instructions and other "special" areas of a page you might think are excluded.
  • JqueryPlugins . . . . 5 matches
         = form =
         form 태그 서밑을 간단히 [ajax]로 변환시켜 줌
         http://www.malsup.com/jquery/form/
         탭형태의 컴포넌트제공 (효과 제공). Provides predefined (slide and/or fade) and custom animations on tab selection, callbacks on tab selection, autoheight, activating tabs programmatically, disabling/enabling tabs. Support for history and bookmarking if used with the History/Remote plugin.
         http://www.stilbuero.de/2007/02/05/tabs-plugin-update-support-for-unobtrusive-ajax/
  • KoreanOnUbuntu . . . . 5 matches
         #keywords Korean, Ubuntu, 한글, 삽질노트, Ubuntu 16.04, Xubuntu
         cf. [Korean Input On Xubuntu]
         Ubuntu 14.04 업그레이드 or 신규설치 후 한글이 안된다.
         Ubuntu 15.10 깔고도 이 작업을 해줬다.
         [Ubuntu 16.04] [Xubuntu]
         xubuntu에서 잘 안되면 ubuntu 로 로그인해서 설정해볼것
         Xubuntu에선 ibus설정이 두가지가 있음
  • Maven . . . . 5 matches
         Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
         Maven's primary goal is to allow a developer to comprehend the complete state of a development effort in the shortest period of time. In order to attain this goal there are several areas of concern that Maven attempts to deal with:
          * Providing a uniform build system
          * Providing quality project information
          * Providing guidelines for best practices development
  • PairingSamsungBluetoothKeyboardTrio500OnXubuntu . . . . 5 matches
         #keywords xubuntu, ubuntu, bluetooth, trio500, keyboard
         [Xubuntu Bluetooth]
         I purchased the Samsung Trio 500, a Bluetooth keyboard with many reviews for its high quality.
         Today, I tried connecting to Xps13 that Xubuntu installed on.
         But for some reason, the Trio 500 kept not pairing.
         Therefore, the address itself can be found there as well.
         While scan mode is on, each time a new device is scanned, that information is continuously displayed on the screen as above.
         For reference, you have to press the Bluetooth button on the Trio 500 for about 3 seconds to enter pairing mode.
         For actual pairing, use the {{{pair}}} command.
         Korean : [삼성 블루투스 키보드 트리오 500 Xubuntu에서 페어링]
  • PatternTemplate . . . . 5 matches
         The setting for the problem. This can include a description of the target user, e.g., developer, manager, customer.
         == Forces ==
         The forces influencing the problem and solution. This can be represented as a list.
          * Force one
          * Force two
         The context of the solution. This should include the new problems that appear as a result of applying the pattern that will require new patterns for their resolution.
         '''Author(s):''' Author's name or "as told to" for pattern mining
         A comma delimited string of terms to be used for searching.
  • html5_book_원철연 . . . . 5 matches
         == 9. Form-related Elements, 9.1 form 요소(Element) http://fromyou.tistory.com/460 ==
         == 7. 텍스트(Text), 7.1 대소문자로 변형(Transforming)하기, 7.2 문장 내 간격(Spacing) 처리하기 http://fromyou.tistory.com/515 ==
         3.4 switch … case 문, 3.5 for 문,3.6 for … in 문, 3.7 while문 http://fromyou.tistory.com/530
         7.1.4 폼(Form)과 관련된 이벤트 핸들러 속성 http://fromyou.tistory.com/550
         == 10. 변환(Transformation) http://fromyou.tistory.com/569 ==
  • Axis로WebService개발하기 . . . . 4 matches
          <java classname="org.apache.axis.wsdl.Java2WSDL" fork="true">
          <java classname="org.apache.axis.wsdl.WSDL2Java" fork="true">
          <java classname="org.apache.axis.client.AdminClient" fork="true">
          <java classname="org.apache.axis.client.AdminClient" fork="true">
  • HelpOnMacros . . . . 4 matches
         For more information on the possible markup, see HelpOnEditing.
         === System information ===
         We don't show examples for all macros here, because that would make this page quite long. Here is is the replacement text for the {{{[[SystemInfo]]}}} macro:
  • MysqlBulkInsert . . . . 4 matches
         SET foreign_key_checks=0;
         SET foreign_key_checks=1;
         SET autocommit=0; SET unique_checks=0; SET foreign_key_checks=0;
         commit; SET foreign_key_checks=1; SET unique_checks=1; SET autocommit=1;
  • Pivotal summit 2019 Seoul . . . . 4 matches
         Pivotal Platform.. (Pivo. Appli. Service)
         # Drinking from the Stream: How to Use Messaging Platform for Scalability & Performance
  • ProcMail . . . . 4 matches
         [mmencode]를 이용하여 quoted-printable이나 base64등으로 encodeing된 메일을 디코딩할수 있으며 [formail]툴을 이용하여 메일헤더등의 메일형식을 바꿀 수 있다.
         # for spamassassin
         # | formail -I "Content-Transfer-Encoding: 8bit"
         # | formail -I "Content-Transfer-Ecoding: 8bit"
  • SwaggerSettingOnSpringBootWithNewServletContext . . . . 4 matches
         2. determine prefix ("/apigw" in this case) for new context and add setting in SpringBootApplication or other configuration
         3. write {{{ApiGwWebMvcConfig.java}}} for new context
         4. write {{{Swagger2Config.java}}} for swagger setting
          .forCodeGeneration(true)
  • Ubuntu16.04 . . . . 4 matches
         #keywords XPS-13, Ubuntu16.04
         [Ubuntu16.04 XPS-13 wifi driver issue]
         [Ubuntu16.04 Ctrl+F5 not working]
         [Ubuntu16.04 Korean Font]
  • WikiSandBox . . . . 4 matches
          1. Check for loose change in the sofa cushions.
          1. Check out, http://www.halfbakery.com, for instance http://www.halfbakery.com/idea/Jehovah_27s_20Witness_20Delivery#979686222-5-1
         == Formatting ==
         preformatted
         pre-formatted, No heading, No tables, No smileys. Only WikiLinks
  • WikiWikiWebFaq . . . . 4 matches
         '''A:''' A set of pages of information that are open and free for anyone to edit as they wish. The system creates cross-reference hyperlinks between pages automatically. See WikiWikiWeb for more info.
         See Wiki:WikiWikiWebFaq for more questions & answers.
  • WindowsXP기본서비스 . . . . 4 matches
         40 Performance Logs and Alerts
         RIPv1(Routing Information Protocol version 1)을 쓰는 라우터가
         84 Windows Management Instrumentation Driver Extension
         87 WMI Performance Adapter
  • convenc . . . . 4 matches
          for(int i=0; i<args.length; i++){
          csOutput = Charset.forName(params[0]);
          csInput = Charset.forName(params[0]);
          csOutput = Charset.forName(params[1]);
          catch(NumberFormatException nfe){}
  • copy-production2dev.py . . . . 4 matches
         for r in sdb_cursor.fetchall():
          insert_query = insert_mbase.format(r[1], r[2], r[3], r[4], r[5], r[6], r[7], r[8], r[9], r[10], r[11], r[12])
          for pbd in sdb_cursor.fetchall():
          query = insert_detail.format(baseSeq, pbd[2], pbd[3], pbd[4], pbd[5], pbd[6], pbd[7], pbd[8], pbd[9])
  • css . . . . 4 matches
          * css for mobile
         fieldset, form, label, legend,
         blockquote:before, blockquote:after,
         q:before, q:after {
  • json . . . . 4 matches
         JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
  • multipart . . . . 4 matches
         <form method="post" enctype="multipart/form-data">
         </form>
         --> 이런형태로 업로드시 스트림형태는 다음과 같다. [web upload stream format]
  • myProcmail_20060918 . . . . 4 matches
         # for spamassassin
         # | formail -I "Content-Transfer-Encoding: 8bit"
         # | formail -I "Content-Transfer-Ecoding: 8bit"
          | formail -I "Content-Transfer-Encoding: 8bit"
  • procmail . . . . 4 matches
         [mmencode]를 이용하여 quoted-printable이나 base64등으로 encodeing된 메일을 디코딩할수 있으며 [formail]툴을 이용하여 메일헤더등의 메일형식을 바꿀 수 있다.
         # for spamassassin
         # | formail -I "Content-Transfer-Encoding: 8bit"
         # | formail -I "Content-Transfer-Ecoding: 8bit"
  • spark . . . . 4 matches
          * ref : [spark performance test results on cluster]
         val df_mysql = sqlContext.read.format("jdbc").option("url", "jdbc:mysql://dev-db/finance").option("driver", "com.mysql.jdbc.Driver").option("dbtable", "(select a.*,b.productBaseDetailSeq,b.optionSrl,b.paymentSrl,b.amount,b.salesSupplyFee,b.salesSupplyFeeVat,b.paymentSupplyFee,b.paymentSupplyFeeVat,b.count from product_base a join product_base_detail b on a.productBaseSeq=b.productBaseSeq) as prbase").option("user", "ididid").option("password", "xxxxx").load()
         val df = sqlContext.read.format("com.databricks.spark.csv").option("header", "true").option("inferSchema", "true").load("export.csv")
  • ubuntu . . . . 4 matches
         ["make .desktop file for window application launching"]
         [align monitors in Ubuntu]
         [ubuntu soundcard problem]
         [install private root cert in ubuntu]
         [ubuntu keyboard mapping]
         [ubuntu usb creator]
         [ubuntu on macbookpro]
         [eclipse on ubuntu]
         [Korean on ubuntu]
         [Epson AcuLaser C1700 driver for ubuntu]
  • AdExchange . . . . 3 matches
         [SSP - AdTech]: Supply Side Platform
         [DSP - AdTech]: Demand Side Platform
         [DMP - AdTech]: Data Management Platform - 매체와 오디언스에 대한 데이터 제공
  • AntBuild.xml예제3 . . . . 3 matches
          <format property="DSTAMP" pattern="yyyy-MM-dd" />
          <format property="TSTAMP" pattern="HH:mm" />
          <java classname="HelloANT" fork="true">
  • Apple Magic Trackpad 2 . . . . 3 matches
         [apple magic trackpad2 for Ubuntu 20.04.1]
         [apple magic trackpad2 for ubuntu]
  • AppleMagicTrackpad2ForUbuntu . . . . 3 matches
         #keywords Ubuntu, Apple Magic Trackpad 2, driver
         this driver for kernel v4.18
         Apple magic trackpad 2 driver
         from https://github.com/robotrovsky/Linux-Magic-Trackpad-2-Driver
         [[synaptic touchpad sensitivity ubuntu]]
  • BuildingMicroservices;마이크로서비스아키텍처구축-샘뉴먼지음,정성권옮김 . . . . 3 matches
          - ex : addPoint(amount(100), forAccount(1234)) ===> addPoint(amount(100), forAccount(1234), reason(forPurchase(4567)))
  • Calendar . . . . 3 matches
          for (int year = syear; year <= eyear; year++) {
          for (int month = 0; month <= 11; month++) {
          for (int date = 1; date <= getLastDateOf(year, month); date++) {
  • CheckJuminnoInContents . . . . 3 matches
          for(i=1; i<=6; i++)
          for(i=7; i<=13; i++)
          for(i=1; i<=12; i++){
  • Epson L3156 Driver for Ubuntu . . . . 3 matches
         cf. ["EpsonL3156NetworkIssue-20101129"]
         just add a new printer in Ubuntu's Printers control panel
         after installing driver from below site
         https://askubuntu.com/questions/1117964/epson-l3150-printer-driver
  • FindMissingNumber.java . . . . 3 matches
          for (long l = 0; l < NUM_SIZE; l++) {
          for (int i = 0; i < PORT_COUNT; i++) {
          for (int j = 0; j < PORT_SIZE; j++) {
  • HelpOnNavigation . . . . 3 matches
         On the upper right you find icons for the most often used functions:
          * [[Icon(info)]] shows meta information about the page, especially the full version history
         On the bottom of each page, you find the "traditional" edit and search links known from the original wiki, and in addition fields for quick-searching titles and the page texts, plus links to call any custom actions you have installed.
  • HelpOnSmileys . . . . 3 matches
         For more information on the possible markup, see HelpOnEditing.
         If you want to add {{{[[SmileyChooser]]}}} in the edit form,
         make EditTextForm page like following
         #editform
  • HelpOnXmlPages . . . . 3 matches
         See the following example for details, which can also be found on the XsltVersion page.
         /!\ MoniWiki support two type of XSLT processors. One is the xslt.php, the other is xsltproc.php. xslt.php need a xslt module for PHP and xsltproc.php need the xsltproc.
         <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  • InstallCert.java . . . . 3 matches
          for (int i = 0; i < chain.length; i++) {
          } catch (NumberFormatException e) {
          for (int b : bytes) {
          * see also : [installing a root certificate on Ubuntu]
  • Karabiner-Elements . . . . 3 matches
         A powerful and stable keyboard customizer for macOS.
          "to": [ { "key_code": "delete_forward" } ],
          "to": [ { "key_code": "delete_forward" } ],
  • MoniWikiACL . . . . 3 matches
         # A sample Access Control Lists file for Moniwiki
         * @ALL allow read,userform,rss_rc,aclinfo,fortune,deletepage,fixmoin,ticket
  • NewscrapRestarter.java . . . . 3 matches
         import java.text.SimpleDateFormat;
          // for (int i = 0; i < nodeList.getLength(); i++) {
          // for (int j = 0; j < childNodes.getLength(); j++) {
          SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
          String yyyyMMdd = sdf.format(new Date());
  • PMD . . . . 3 matches
         PMD scans Java source code and looks for potential problems like:
          * Overcomplicated expressions - unnecessary if statements, for loops that could be while loops
         from http://pmd.sourceforge.net/
  • Reactive Programming and Coroutines . . . . 3 matches
         ["Coroutine Performance"]
         Coroutine Performance
         https://github.com/b2etw/reactive-coroutine-performance-test
  • SlippingThroughMyFingers . . . . 3 matches
         And I have to sit down for a while
         The feeling that I'm losing her forever
         The places I had planned for us to go
  • SparkPerformanceTestResultsOnCluster . . . . 3 matches
         #keywords spark, performance test, cluster
         [spark] performance test results on cluster
         val df = sqlContext.read.format("com.databricks.spark.csv").option("header", "true").option("inferSchema", "true").load("export.csv")
  • Ubuntu16.04XPS-13WifiDriverIssue . . . . 3 matches
         #keywords XPS-13, Ubuntu16.04, wifi, bcm43522, broadcom, driver
         cf. [Ubuntu 20.04 Broadcom BCM4352 Wireless Network Adapter driver]
         Go to software & Updates, enable"Proprietary drivers for devices"
         It'll grab the latest broadcom drivers and intel microcode, you'll need to disable secure boot if its enabled, reboot, and it should work.
  • Ubuntu20.04BroadcomBCM4352WirelessNetworkAdapterDriver . . . . 3 matches
         #keywords Ubuntu 20.04, wifi, driver, Broadcom, bcm4352
         cf. https://itsfoss.com/fix-no-wireless-network-ubuntu/
         cf. [Ubuntu16.04XPS-13 Wifi Driver Issue]
          * Note. need some internet connection to download driver, so need wired internet connection or some device like these
  • Ulauncher . . . . 3 matches
         make ".desktop" file for the app (for example Obsidian.AppImage)
         refer to ["make .desktop file for window application launching"]
  • UserPreferences . . . . 3 matches
         If you are coming to this page for the first time, you'll see form into which you can enter your username and some other settings (crypted password and e-mail are stored). If you click on '''Create Profile''', a user profile will be created for you. With the response, a HTTP cookie will be sent that contains your user ID, which enables the system to recognize you.
  • Utf8EncoderDecoderJavascript . . . . 3 matches
          // public method for url encoding
          for (var n = 0; n < string.length; n++) {
          // public method for url decoding
  • WebWork . . . . 3 matches
         WebWork is a Java web-application development framework. It is built specifically with developer productivity and code simplicity in mind, providing robust support for building reusable UI templates, such as form controls, UI themes, internationalization, dynamic form parameter mapping to JavaBeans, robust client and server side validation, and much more.
  • WolInPhp . . . . 3 matches
          foreach($mac_array AS $octet)
          for ($i = 1; $i <= 6; $i++)
          for ($i = 1; $i <= 16; $i++)
  • copy-production2dev-read-id-from-stdin.py . . . . 3 matches
         for angcoupSrl in fileinput.input():
          selectSqlBinded = selectSql.format(angcoupSrl)
          insertSqlBinded = insertSql.format(r[0], r[1], r[2])
  • derby . . . . 3 matches
         load driver & get connection
         Class.forName(“org.apache.derby.jdbc.ClientDriver”).newInstance();
         DriverManager.getConnection(“jdbc:derby://localhost:1527/C:/derby/MyDB;create=true”);
  • eclipse . . . . 3 matches
         [eclipse on ubuntu]
         <javac fork="yes" memoryMaximumSize="256m" .....
         = eclipse code formatter =
         [eclipse java code style formatter]
  • juniper . . . . 3 matches
          - [Pulse Secure UI for 64bit Linux]
          - [Juniper VPN 64bit Ubuntu에서 Command Line으로 연결하기]
          * [[bookmarklet]] for get cookie
  • saas . . . . 3 matches
         Software as a service (SaaS) is a software application delivery model where a software vendor develops a web-native software application and hosts and operates (either independently or through a third-party) the application for use by its customers over the Internet. Customers do not pay for owning the software itself but rather for using it. They use it through an API accessible over the Web and often written using Web Services or REST. The term SaaS has become the industry preferred term, generally replacing the earlier terms Application Service Provider (ASP) and On-Demand.
  • totalcommander-wincmd.ini . . . . 3 matches
         ExplorerForCopy=0
         5=rkh_boardform_delpass_ji.jsp
         4=<form
         ForeColor=-1
         16=owasp_reform
  • 웹서비스동적스텁생성클라이언트 . . . . 3 matches
         import java.net.MalformedURLException;
          MalformedURLException, RemoteException
          for(int i = 0; i < result.length; i++)
  • AppleMagicTrackpad2ForUbuntu20.04.1 . . . . 2 matches
         #keywords Ubuntu, Apple Magic Trackpad 2
          Coordinate Transformation Matrix (167): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
  • CountingClosedPolygons . . . . 2 matches
          for(a in arrows){
          for(a in arrows){
  • Decision Tree Regressor Model Sample . . . . 2 matches
         print("Validation MAE: {:,.0f}".format(val_mae))
         mae_map = {n: get_mae(n, train_X, val_X, train_y, val_y) for n in candidate_max_leaf_nodes}
  • EbXML등장배경 . . . . 2 matches
         1998년 XML 1.0이 발표된 이후 다양한 전자거래 표준(로제타넷, 커머스넷, eCo, 아리바등)이 등장하였다. XML의 가장 큰 장점은 확장성이다. 기존의 EDI가 사용되는 구문은 정해진 포맷을 사용하여 확장성을 허용하지 않았다. 수십개의 표준화 작업이 진행되고, 각각의 나름대로 서로 다른 프레임워크를 정의한다면, 상호연동성을 도모하는 것은 지극히 어여룽 작업이다. 이렇게 시장이 표준화와 배치되는 방향으로 나아가는 상황에서 XML 기반의 단일 표준화를 추진할 필요성을 인식하고 1999년 11월 국제 EDI 추진기구인 UN/CEFACT가 IT 민간 컴소시엄인 OASIS(Organization for the Advancement of Structured Information Standards)와 공동으로 1999년 11월 부터 18개월 동안 ebXML(e-Business using XML)이라는 체세대 인터넷 전자상거래 표준 프레임워크를 제정하였다.
  • Epson . . . . 2 matches
         #keywords Epson, Printer
         [Epson Printer]
  • GuavaRateLimiterExample . . . . 2 matches
          for (i in 1..transaction) {
          for (i in 1..transaction) {
  • HelpOnProcessors . . . . 2 matches
         The ColorizeProcessor knows of several source types, and can syntax-highlight them. For more information see ColorizeProcessor.
         for ($i=1;$i<=100;$++)
  • HelpOnSpellCheck . . . . 2 matches
         MoinMoin looks for valid words in two places:
         If the "dbhash" module is available with your Python installation, the files in "dict" are read only ''once'' and stored in a hash table. This speeds up the spell checking process because then the number of words in the ''checked page'' determines the time needed for the checking, ''not'' the number of words in the dictionary (with 250000 words, some hundred milliseconds instead of several seconds).
  • Inheritance-Oojs . . . . 2 matches
          for(property in parent.prototype){
          for(property in proto){
  • InstallBcmwl-kernel-source . . . . 2 matches
         cf. [Ubuntu20.04 Broadcom BCM4352 Wireless Network Adapter Driver]
  • InstallPrivateRootCertInUbuntu . . . . 2 matches
         #keywords ubuntu, cert, root, certificate
         https://askubuntu.com/questions/73287/how-do-i-install-a-root-certificate
         In case of a .pem file on Ubuntu, it must first be converted to a .crt file:
         openssl x509 -in foo.pem -inform PEM -out foo.crt
  • InstallingARootCertificateOnUbuntu . . . . 2 matches
         #keywords Ubuntu, cert, certificate
         openssl x509 -in SOME.pem -inform PEM -out SOME.crt
  • InterWiki . . . . 2 matches
         InterWiki marks the links in a way that works for the MeatBall:ColourBlind and also is MeatBall:LynxFriendly by using a little icon with an ALT attribute. If you hover above the icon in a graphical browser, you'll see to which Wiki it refers.
         See the MeatBall:InterWiki page on MeatBall:MeatballWiki for further details.
  • IterableReducer . . . . 2 matches
          for (T each : iterable) {
          for (F each : iterable) {
  • JUnit관련AntTestTarget예제 . . . . 2 matches
          <formatter type="xml" />
          <report format="frames" todir="${test.dir}/html" />
  • JavaListSystem.properties() . . . . 2 matches
         java.specification.name=Java Platform API Specification
         java.specification.name=Java Platform API Specification
  • JavaNCSS . . . . 2 matches
         JavaNCSS is a source measurement suite for Java which produces quantity & complexity metrics for your java source code.
  • JavaUnicodeEncoderDecoder . . . . 2 matches
         System.out.println(UrlEscapers.urlFormParameterEscaper().escape("a+b c"));
          for( int i=0 ; i < s.length() ; i++){
          for( int i= uni.indexOf("\\u") ; i > -1 ; i = uni.indexOf("\\u") ){ // euc-kr(%u), utf-8(//u)
  • JavascriptLibrary . . . . 2 matches
         [Javascript convertToHtml()] - for [XSS] safe coding
         = format date pattern =
  • Keychron K9 Pro . . . . 2 matches
          2. fn1 + J + Z (for 4 seconds)
          7. fn1 + J + Z (for 4 seconds again)
  • MD5SUM.java . . . . 2 matches
          for(int i=0; i<raw.length; i++){
          for(int i=0; i<args.length; i++){
          catch(NumberFormatException nfe){}
  • MoniWiki . . . . 2 matches
         MoniWiki is a PHP based WikiEngine. WikiFormattingRules are imported and inspired from the MoinMoin. '''Moni''' is slightly modified sound means '''What ?''' or '''What is it ?''' in Korean and It also shows MoniWiki is nearly compatible with the MoinMoin.
         http://sourceforge.net/projects/moniwiki/
         <img src="http://sourceforge.net/sflogo.php?group_id=51905&type=1" alt='SF.net' />
  • MoniWikiCssTips . . . . 2 matches
         == Customized input forms ==
         http://www.picment.com/articles/css/funwithforms/
  • MultiTable.scala . . . . 2 matches
          val rows = for ( n <- 1 to 10 ) yield {
          val cols = for (h <- 1 to 10) yield {
  • OWASP . . . . 2 matches
         encoding project ([Reform]) for XSS safe code
  • RecentChanges . . . . 2 matches
         ||||<tablealign="center"> [[Icon(diff)]] ||marks older pages that have at least one backup version stored (click for an author diff)||
         |||| [[Icon(updated)]] ||marks pages edited since you set your bookmark (click for a bookmark diff)||
  • Reform . . . . 2 matches
         org.owasp.reform.Reform.HtmlEncode(xxxx);
  • RestApi . . . . 2 matches
         best practices for a pragmatic restful api:
         https://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api
  • SPF . . . . 2 matches
         Note: currently some of this information is obtained separately from
         Received: from hikiki.net (218.38.13.156) by verifier.port25.com (PowerMTA(TM) v3.2a26) id h98phu0a8mk6 for <check-auth@verifier.port25.com>; Sat, 22 Apr 2006 09:43:59 -0400 (envelope-from <kiki@hikiki.net>)
  • SSL해킹 . . . . 2 matches
         <form action="https://sss">...
         <form action="http://sss">...
  • Sybase . . . . 2 matches
         = 사이베이스용 jdbc driver 다운로드 =
         어쨌든 원인은 뭔지 몰라도 google에서 찾아보니 jdbc 커넥션을 맺을때 url에 다음과 같은 파라미터를 지정해줘서 해결했다는게 있었다. (여기에 사용한 jdbc driver는 jConnect6.05 였음)
         Driver Classname =
         com.sybase.jdbc3.jdbc.SybDriver
  • TheIdealWayToUseJUnit . . . . 2 matches
          * Decide what methods will be in your class, then write them as stubs — for example,
          * Use your IDE to create the test class, complete with stubs for each test method
  • ToolsForEnglishLearning . . . . 2 matches
         Grammarly for Chrome
         https://blog.oxforddictionaries.com/
  • Ubuntu16.04Ctrl+F5NotWorking . . . . 2 matches
         #keywords Ubuntu16.04
         [Ubuntu16.04]에서 Ctrl+F3 은 기본적으로 3번 workspace로 전환하는 단축키로 지정되어 있다.
  • UbuntuWithinWindow . . . . 2 matches
         [[Ubuntu]] >>
         C:\wubildr.mbr = "Ubuntu"
  • UnixLog . . . . 2 matches
         = binary format log =
         = text format log =
  • Web2.0을활용한사이트 . . . . 2 matches
          * Performancing Metrics
          * Salesforce.com
  • WhiteSpace . . . . 2 matches
         When chosen, these actions are performed when a buffer is saved:
         The following Buffer options enable you to control the highlighting of spaces, tabs and other whitespaces for a given jEdit buffer. It's also possible to highlight spaces and tabs depending on their position (leading/inner/trailing) in the text.
  • WikiMarkup . . . . 2 matches
         The special characters or character sequences used in a WikiWikiWeb to indicate the desired formatting. Like duplicate single-quote for ''emphasis''.
  • XSS . . . . 2 matches
         encoding project ([Reform]) for XSS safe code
  • aspectwerkz . . . . 2 matches
         AspectWerkz is a dynamic, lightweight and high-performant AOP framework for Java.
  • aws . . . . 2 matches
         Terraform and AWS 101: https://terraform101.inflearn.devopsart.dev/
  • bookmarklets . . . . 2 matches
          for(var i in cnames){
         Dic for selected text(선택된 텍스트를 바로 쿼리)
  • certbot . . . . 2 matches
         for Nginx on Ubuntu 16.04 (xenial)
  • dconf-editor . . . . 2 matches
         DConf is a low-level key/value database designed for storing desktop environment settings.
         [우분투]에서 설치는 그냥 Ubuntu Software Center를 써도 되고 apt-get을 이용해도 된다.
  • dhtml . . . . 2 matches
         function reformatDateValues()
          for(var i=0; i<spans.length; i++){
  • docs . . . . 2 matches
         https://martinfowler.com/articles/microservices.html#DesignForFailure | Microservices
         https://blogs.msdn.microsoft.com/andreasderuiter/2012/12/05/designing-an-etl-process-with-ssis-two-approaches-to-extracting-and-transforming-data/ | Designing an ETL process with SSIS: two approaches to extracting and transforming data – Andreas De Ruiter's BI blog
  • expect . . . . 2 matches
         http://expect.sourceforge.net/
         Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.
  • glance . . . . 2 matches
         Per-process information
         > thread count (Thd Cnt) = total number of kernel threads for the current process
  • httpRequest.js . . . . 2 matches
          for (var key in params) {
          'Content-Type', 'application/x-www-form-urlencoded');
  • log4j . . . . 2 matches
          * Layout: formatting the output for Appender
  • make .desktop file for window application launching . . . . 2 matches
         and edit it for your application
         below is "Obsidian.desktop" file for launch Obsidian application
  • mount . . . . 2 matches
         ["Google Drive Mount to Ubuntu"]
         UbuntuSftpDirMount - sshfs
  • rcs . . . . 2 matches
         The Revision Control System (RCS) manages multiple revisions of files. RCS automates the storing, retrieval, logging, identification, and merging of revisions. RCS is useful for text that is revised frequently, including source code, programs, documentation, graphics, papers, and form letters.
  • trash . . . . 2 matches
         === for hp-ux ===
         === for cygwin ===
  • vim . . . . 2 matches
         set fileformat=dos
         set fileformat=unix
  • vim.bat . . . . 2 matches
         rem collect the arguments in VIMARGS for Win95
         rem for WinNT we can use %*
  • xbmc . . . . 2 matches
         XBMC is an award-winning free and open source (GPL) software media player and entertainment hub for digital media. XBMC is available for [Linux], OSX, and Windows.
  • xps13 . . . . 2 matches
         [xps13 ubuntu bluetooth]
         [Ubuntu 16.04] 업그레이드 후 인식안됨 20160424
         [Ubuntu 16.04] installed. with "UEIF + SecureBootOff" 20160502
         참조: https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#newwindow=1&q=make+bootable+usb+from+iso+on+ubuntu
  • xsl적용하기.js . . . . 2 matches
          msg_id.innerHTML = xmlDoc.trasformNode(xslDoc);
          var fragment = xsltProc.transformToFragment(xmlDoc, document);
  • 모델링에대한이해 . . . . 2 matches
          * The basic reason for modeling is to get a better understanding of the system we are developing
          * 2000년대 : Object Technology for WWW and EC
  • 보안툴 . . . . 2 matches
         [Shadow Security Scanner] (network vulnerability assessment scanner) has earned the name of the fastest - and best performing - security scanner in its market sector, outperforming many famous brands. Shadow Security Scanner has been developed to provide a secure, prompt and reliable detection of a vast range of security system holes.
  • 오픈소스S/w라이센스 . . . . 2 matches
         http://www.socop.or.kr/06information/06information_06.jsp?board_idx=258
  • 접근성고려 . . . . 2 matches
         = for users =
         = for devices =
  • 정규식치환문자 . . . . 2 matches
         | \2-\9 | Do the same for the second (etc.) pair of \( \) |
         | \f | Insert a form-feed character |
  • 1일차-SqlTuning교육 . . . . 1 match
         SQL> explain plan for
  • AliasPageNames . . . . 1 match
         #format plain
  • Amaya . . . . 1 match
         Amaya is a Web client that acts both as a browser and as an authoring tool. It has been designed by W3C and INRIA with the primary purpose of demonstrating new Web technologies and helping users to generate valid Web pages.With Amaya, you can manipulate rich Web pages containing forms, tables, and the most advanced features from XHTML. You can create and edit complex mathematical expressions within Web pages. You can style your documents using Cascading Style Sheets (CSS).
  • BitSetTest . . . . 1 match
          for (int i = 0; i < 2000000000; i++)
  • CI . . . . 1 match
         from http://www.sereform.com/?p=234
  • CITP . . . . 1 match
         Continuous Test & Integration Platform
  • CSSTools . . . . 1 match
          * HTML Tidy(HTML 문법체크) - http://tidy.sourceforge.net
  • CategoryCategory . . . . 1 match
         To be consistent with the C2 category scheme, all categories start with the word "Category". For more information, see Wiki:AboutCategoriesAndTopics''''''.
  • CategoryEmpty . . . . 1 match
         A category for empty pages. See also DeleteThisPage.
  • CategoryHomepage . . . . 1 match
         A category for WikiHomePage''''''s.
  • Checkstyle . . . . 1 match
         http://checkstyle.sourceforge.net/
  • Cobertura . . . . 1 match
         http://cobertura.sourceforge.net/
  • CopyingOffsetsOfAConsumerGroupToAnotherConsumerGroupInKafka0.10WithPythonScript . . . . 1 match
          * STOP above script(poll-without-commit.py) with Ctrl+C and WAIT for grp2 to go into REBALANCING state.
  • CountOnMe . . . . 1 match
         And if you ever forget how much you really mean to me,
  • CruiseControl . . . . 1 match
         http://cruisecontrol.sourceforge.net/
  • Css관련사이트 . . . . 1 match
         [^http://forum.standardmag.org/] - 표준관련 포럼
  • DeleteThisPage . . . . 1 match
         A marker for pages that should be deleted.
  • Ducky One 2 Mini . . . . 1 match
         윈도우가 없어서 Ubuntu 안에 있는 VirtualBox 에 윈도우 설치하고 수행함
  • EclipseFont . . . . 1 match
         /home/gim/programs/eclipse/plugins/org.eclipse.platform_4.3.1.v20130911-1000/css/e4_default_gtk.css
  • EclipseOnUbuntu . . . . 1 match
         #keywords eclipse, ubuntu, 삽질
         Exec=/usr/java/jdk7/bin/java -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=256m -Xms40m -Xmx512m -jar /home/xxx/programs/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar -os linux -ws gtk -arch x86_64 -showsplash /home/xxx/programs/eclipse//plugins/org.eclipse.platform_4.3.1.v20130911-1000/splash.bmp -launcher /home/xxx/programs/eclipse/eclipse -name Eclipse --launcher.library /home/xxx/programs/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20130807-1835/eclipse_1506.so -startup /home/xxx/programs/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar --launcher.appendVmargs -exitdata 338007 -product org.eclipse.epp.package.jee.product -vm /usr/java/jdk7/bin/java -vmargs -Dosgi.requiredJavaVersion=1.6 -XX:MaxPermSize=256m -Xms40m -Xmx512m -jar /home/xxx/programs/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
  • EclipsePlugin . . . . 1 match
         MyBatisLink : Java code에서 MyBatis 쿼리 탐색 http://sourceforge.net/p/mybatislink/wiki/Home/
  • EclipseServer-Weblogic . . . . 1 match
          * eclipse에서 "Define packaging structure for Java EE Web Application project"
  • EditTextForm . . . . 1 match
         #editform
         [[UploadForm]]
  • EnglishLearning . . . . 1 match
         [Tools for English learning]
  • For명령 . . . . 1 match
         for f in *.sh; do echo $f; done
  • GoogleAIYVoiceKit . . . . 1 match
         https://www.raspberrypi.org/forums/viewtopic.php?t=193379
  • HelpContents . . . . 1 match
          * HelpForBeginners - if you are new to wikis
          * MoniWiki:HelpMiscellaneous for more details, and a FAQ section
          * MoniWiki:HelpForDevelopers - how to add your own features by changing the MoniWiki code
  • HelpOnPageDeletion . . . . 1 match
         What this means is that you can get back at deleted pages by using the standard mechanisms. If you enter the page name into the `!GoTo` dialog form, you'll see the usual page creation stuff, but clicking on `!PageInfo` will reveal the old version history, unless the page was purged by WikiMaster out of existence inbetween.
  • HelpOnRules . . . . 1 match
         For more information on the possible markup, see HelpOnEditing.
  • HelpOnSubPages . . . . 1 match
         Links to sibling pages start with "`../`", for example ../SubPages (a link to this page).
  • HelpOnTables . . . . 1 match
         For more information on the possible markup, see HelpOnEditing.
  • HelpTemplate . . . . 1 match
         == Template for Help Pages ==
  • Hibernate . . . . 1 match
         Hibernate is a powerful, high performance object/relational persistence and query service.
  • Html5HTML . . . . 1 match
         === New form field types ===
  • IdeaPlugins . . . . 1 match
         KJump (easymotion for ideavim)
  • IterateMultipleArgsInBash . . . . 1 match
         for arg; do
  • JDepend . . . . 1 match
         JDepend traverses Java class file directories and generates design quality metrics for each Java package. JDepend allows you to automatically measure the quality of a design in terms of its extensibility, reusability, and maintainability to manage package dependencies effectively.
  • JTidyPlugin . . . . 1 match
         http://jtidy.sourceforge.net/
  • JavaTips . . . . 1 match
         = SimpleDateFormat, Calendar : 문자열에서 날짜 파싱후 날짜연산 후 다시 스트링으로 포매팅 =
         import java.text.SimpleDateFormat;
          SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
          String str = sdf.format(cal.getTime());
  • JavascriptCloneFunction . . . . 1 match
          for(var key in obj)
  • JavascriptText의ByteLength구하기 . . . . 1 match
          for(i=0; i<v.length; i++){
  • JuniperVPN64bitUbuntu에서CommandLine으로연결하기 . . . . 1 match
         ref. https://www.google.co.kr/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#newwindow=1&q=how+to+install+32bit+gcc+on+ubuntu+64
         echo | openssl s_client -connect GATE.SITE.COM:443 2>&1 | sed -ne "/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p" | openssl x509 -outform der > ssl.crt
  • KernelUpgradeTo4.18 . . . . 1 match
         #keywords kernel, upgrade, Ubuntu
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-headers-4.18.5-041805_4.18.5-041805.201808241320_all.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-headers-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-image-unsigned-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
         xps13:$ wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.18.5/linux-modules-4.18.5-041805-generic_4.18.5-041805.201808241320_amd64.deb
         if that, you need to reinstall drivers that use dkms
  • Kotlin and Reactive . . . . 1 match
         ["Coroutine Performance"] compared with blocking, reactive
  • LinuxNews . . . . 1 match
         = 프랑스 의회, 윈도우즈 대신 리눅스 「Ubuntu」 채용. =
  • LinuxSystem관리 . . . . 1 match
         https://b.luavis.kr/server/linux-performance-analysis
  • LocalKeywords . . . . 1 match
         #format plain
         Formatting Help wiki 포매팅 문법
  • LockingWithUpdatingStatusFieldInJpaEnvironmentUsingAutoClosable . . . . 1 match
          // throw new RuntimeException("for test");
  • Mac and Osx . . . . 1 match
         ["Useful Software for Mac"]
  • MacVim . . . . 1 match
         cf. ["Useful Software for Mac"]
  • MapCapslockToEscKey . . . . 1 match
         UbuntuKeyboardMapping
  • Mini Keyboard . . . . 1 match
         B.O.W Mini Keyboard for Phone / Tablet , Slim & Light Folding Portable Keyboard 3 Bluetooth Devices Connection
  • MobileSiteDOCTYPE . . . . 1 match
         <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.wapforum.org/DTD/xhtml-mobile12.dtd">
  • Module04.S/WArchitecture . . . . 1 match
          * Protocols for communication
  • MoniWikiTip . . . . 1 match
         = [MoniWikiTextFormatting] =
         EditTextForm
         #editform
         [[UploadForm]]
  • MoniWiki보안설정 . . . . 1 match
         * Anonymous allow userform
  • MonitoringOnMSA . . . . 1 match
         kibana : Kibana is an open source data visualization plugin for Elasticsearch.
  • MouseButtonModifier-Moving,ResizingWindow . . . . 1 match
         #keywords Ubuntu, mouse button modifier, resize window, move window
         https://askubuntu.com/questions/118151/how-do-i-disable-window-move-with-alt-left-mouse-button-in-gnome-shell
  • NetworkKeyboard . . . . 1 match
          * ["Wifi Keyboard for Android"]
  • OurLastSummer . . . . 1 match
         Living for the day
  • PhpOnNginx . . . . 1 match
         add below to nginx conf for your site
  • Reactive Readability . . . . 1 match
         Coroutines - a better match for Kotlin than Reactive Streams? https://nexocode.com/blog/posts/reactive-streams-vs-coroutines/
  • Remote Desktop으로 XRDP 연결시 GUI 프로그램들이 깨지는 현상 - 20240501 . . . . 1 match
         from https://forums.raspberrypi.com/viewtopic.php?t=358637
  • S-Tools . . . . 1 match
         Steganography tools for windows
  • SCM . . . . 1 match
         Revision control, also known as version control, source control or (source) code management (SCM), is the management of changes to documents, programs, and other information stored as computer files.
  • SOAP . . . . 1 match
         SOAP with Attachments API for java
  • SSL For Free . . . . 1 match
         https://www.sslforfree.com/
  • SeparatingStructureAndBehavior-Js . . . . 1 match
          for(var i=0; i<links.length; i++){
  • SmbMountOnUbuntu . . . . 1 match
         Password for ftp@//rtac68p/pds:
  • SpringEclipseCodeFormatter . . . . 1 match
         [spring] [eclipse] code formatter
  • Ssh-add.exeOnCygwin에서Ssh-agent연결불가 . . . . 1 match
         Enter passphrase for /win/c/DOCUME~1/user/cygwin_home//.ssh/id_rsa:********
  • StarUML . . . . 1 match
         StarUML은 빠르고, 유연하고, 확장가능하며, 풍부한 기능에 Win32 플랫폼에서 무료로 사용할 수 있는 [UML]/[MDA] 플랫폼(툴)을 개발하기 위한 오픈 소스 프로젝트입니다. StarUML 프로젝트의 목적은 [Rational Rose], [Together]와 같은 상업적 도구를 비싼 돈을 들여 사용하지 않더라도 그에 준하는 기능을 갖춘 오픈 소스 소프트웨어 [모델링 도구] 및 플랫폼을 개발하는 것입니다. http://staruml.sourceforge.net/
  • Struts_configRuntimeReload . . . . 1 match
         public class ActionServletForDev extends ActionServlet {
          dispatcher.forward(request, response);
          <servlet-class>com.gimslab.util.servlet.ActionServletForDev</servlet-class>
  • TClockEx . . . . 1 match
         ref : [xubuntu clock format]
  • TamarinProject . . . . 1 match
         The goal of the "Tamarin" project is to implement a high-performance, open source implementation of the [ECMAScript] 4th edition (ES4) language specification. The Tamarin virtual machine will be used by Mozilla within SpiderMonkey, the core JavaScript engine embedded in [Firefox]®, and other products based on Mozilla technology. The code will continue to be used by Adobe as part of the ActionScript™ Virtual Machine within Adobe® Flash® Player.
  • TcpView . . . . 1 match
         lsof for [ms windows]
  • Tech Interveiw . . . . 1 match
         https://github.com/JaeYeopHan/Interview_Question_for_Beginner
  • ThreadJoin()Test . . . . 1 match
          for(int i=0; i<3; i++){
  • Titanium . . . . 1 match
         http://www.appcelerator.com/platform
  • Ubuntu . . . . 1 match
         [[Ubuntu Tips]]
         [[ubuntu within window]]
  • Ubuntu16.04KoreanFont . . . . 1 match
         #keywords Ubuntu16.04, Korean, Font
  • Ubuntu20.04.1LTSUpgrade-20201008 . . . . 1 match
         #keywords ubuntu-upgrade, ubuntu-tip
         Ubuntu 02.04.1 LTS upgrade 10/8 2020
         최초 설치중 wifi driver 설치되지 않아서 오류 발생했음
         재부팅후 network interface(wifi driver) 잡히지 않음
         wifi driver 잡힘
         attachment:software-and-updates-additional-drivers.png
  • UbuntuSftpDirMount . . . . 1 match
         [Ubuntu]에서 sftp 상의 디렉토리를 로컬 디렉토리에 마운트하는 프로그램 : [sshfs]
  • UbuntuSoundcardProblem . . . . 1 match
         #keywords Ubuntu, Soundcard, Problem
  • UbuntuTips . . . . 1 match
         #keywords ubuntu, tips
          * [Ubuntu 20.04.1 LTS Upgrade - 20201008]
  • UnixShellProgramming . . . . 1 match
         [for 명령]
  • Upstart . . . . 1 match
         #keywords process manager, ubuntu 14.04, SysVinit, systemd, Upstart
         [Ubuntu 14.04] uses [Upstart]
  • Useful Software for Mac . . . . 1 match
         useful [sw] for [Mac]
  • ValidXML . . . . 1 match
         DTD 문법을 따르는 [Well-Formed XML] 문서
         Well-formed [XML]문서이면서 문서의 구조를 정의하는 [DTD](Document Type Definition)에 맞게 기술된 문서
  • Well-FormedXML . . . . 1 match
         = Well-Formed XML의 조건 =
         parsed entity 자체도 well-formed여야 함
  • While명령 . . . . 1 match
         [for 명령]
  • Wifi Keyboard for Android . . . . 1 match
         use this script for using on CLI env.
  • WikiHomePage . . . . 1 match
         A WikiHomePage is your personal page on a WikiWiki, where you could put information how to contact you, your interests and skills, etc. It is regarded as to be owned by the person that created it, so be careful when editing it.
  • WikiNature . . . . 1 match
         See http://www.c2.com/cgi/wiki?WikiNature for more.
  • WikiWikiWeb . . . . 1 match
         Wiki:WardCunnigham created the site and the WikiWikiWeb machinery that operates it. He chose wiki-wiki as an alliterative substitute for quick and thereby avoided naming this stuff quick-web. An early page, Wiki:WikiWikiHyperCard, traces wiki ideas back to a Wiki:HyperCard stack he wrote in the late 80's.
  • XML . . . . 1 match
         = [Well-Formed Document] 적격문서 =
          *[Well-Formed XML] : XML Specification 1.0의 기본 문법 준수 문서
          *[Valid XML] : DTD 문법 따르는 Well-formed XML 문서
  • XMLNamespace . . . . 1 match
         URI는 리소스를 식별하는 문자열로 URL(Uniform Resource Locator) 또는 URN(Universal Resource Name)을 사용한다.
  • Xps13UbuntuBluetooth . . . . 1 match
         #keywords xps13, bluetooth, ubuntu, ubuntu 16.04
         download firmware driver for my device "0a5c:216f"
  • Xubuntu . . . . 1 match
         #keywords Xubuntu, Ubuntu
         [Xubuntu bluetooth]
         [Xubuntu new install]
         = remap xubuntu keybindings =
         = keyboard shortcuts setting in Xubuntu =
  • XubuntuClockFormat . . . . 1 match
         #keywords time, datetime, format, clock, panel
         cf. [reload ubuntu Xfce panel]
  • XubuntuNewInstall . . . . 1 match
         #keywords Xubuntu, Ubuntu, Xubuntu install
  • ajax . . . . 1 match
         [^http://developers.sun.com/ajax/componentscatalog.jsp AJAX Components Available for the Sun Java Studio Creator 2 IDE]
  • b1l . . . . 1 match
         = Ubuntu에서 역슬레쉬(\)가 표시되지 않을 때 =
  • blog . . . . 1 match
         ["blog platforms"]
  • bootlog . . . . 1 match
         grep -h -e 'Stopping ACPI' -e 'Started User Manager for UID 1000' /var/log/syslog /var/log/syslog.[0-9] >> /home/gim/_onoff.log
  • chatgpt . . . . 1 match
         #ref. https://platform.openai.com/docs/api-reference/completions/create
  • cifs . . . . 1 match
         [Ubuntu]
  • clojure . . . . 1 match
         https://www.gitbook.com/book/eunmin/clojure-for-beginners
  • crontab . . . . 1 match
         crontab format :
  • csv-decoding . . . . 1 match
          for(int i=0; i<rec.length; i++)
          public String[] readRecord() throws IOException, InvalidCSVFormatException
          throws InvalidCSVFormatException
          throw new InvalidCSVFormatException();
          throw new InvalidCSVFormatException();
          throw new InvalidCSVFormatException();
          * com.gimslab.util.csv.InvalidCSVFormatException
          * 파일명 : InvalidCSVFormatException.java
         public class InvalidCSVFormatException extends Exception
  • csv-encoding . . . . 1 match
          // for ms windows file
  • eclipseMars . . . . 1 match
         [[eclipseMarsOnUbuntu]]
  • flat nested list . . . . 1 match
          for (Node n : children)
  • fonera . . . . 1 match
          * Press the reset button located beneath the Fonera and hold it down for 15 to 20 seconds (no more). Use a pen or a paper clip to do so.
  • gcc . . . . 1 match
         gcc for win : MinGW
  • git proxy . . . . 1 match
         for ssl connection use ["ssh proxy"]
  • iBatis . . . . 1 match
          return sqlMap.queryForList(“findUser”,name);
          <property name="JDBC.Driver" value="${driver}"/>
  • jacob . . . . 1 match
         http://sourceforge.net/projects/jacob-project
  • javatime . . . . 1 match
         import java.time.format.DateTimeFormatter.ISO_DATE_TIME
  • jiffie . . . . 1 match
         http://jiffie.sourceforge.net/
  • jni . . . . 1 match
          * Jawin: The Java/Win32 integration project (Jawin) is a free, open source architecture for interoperation between Java and components exposed through Microsoft's Component Object Model (COM) or through Win32 Dynamic Link Libraries (DLLs).
  • kermit . . . . 1 match
         Kermit is a computer file transfer/management protocol and a set of communications software tools; it provides a consistent approach to file transfer, terminal emulation, script programming, and character set conversion across many different computer hardware and OS platforms. - from wikipedia
  • keyboard layout . . . . 1 match
         ["Karabiner-Elements"] A powerful and stable keyboard customizer for macOS.
  • kunzip . . . . 1 match
         foreach my $mref ($zip->members) {
  • maf . . . . 1 match
         The Maf project is an archive extension that allows complete web pages to be saved in a single archive file. MAF stands for Mozilla Archive Format and the extension uses RDF to save page meta-data such as the original URL of the page and the date/time the page was put in the archive.
  • mon.html . . . . 1 match
          - <input type="checkbox" id="chkbxAutoFocus" checked="true"/><label for="chkbxAutoFocus">Auto Focus</label>
  • moniwiki . . . . 1 match
         [[MoniWiki formatting]]
  • nabi . . . . 1 match
          * Ubuntu 12.04에서 nabi 실행 시 한영전환 아이콘이 시스템 트레이로 들어가지 않는 문제 발생
  • network-key-in.sh . . . . 1 match
         ["Wifi Keyboard for Android"]
  • nfs . . . . 1 match
         #keywords nfs, network, ubuntu, mount
         NFSv4 on Ubuntu 13.10
         https://help.ubuntu.com/community/SettingUpNFSHowTo
  • playframework . . . . 1 match
         Scala IDE for eclipse
  • reading . . . . 1 match
          * Mastering Jboss Drools 6 for Developers - Mauricio Salatino, Esteban Aliverti, Mariano Nicolas De Maio - 2017
  • rtac68p . . . . 1 match
         from http://prod.danawa.com/info/?pcode=4534930#bookmark_product_information
  • samba . . . . 1 match
         [Ubuntu]
  • sshfs . . . . 1 match
         [Ubuntu Sftp Dir Mount]
  • sw . . . . 1 match
         ["Useful Software for Mac"]
  • synapse . . . . 1 match
         [WARN 11:59:00.046056] [desktop-file-service:196] Unable to create AppInfo for /usr/share/applications/vim.desktop
  • ubuntu16 . . . . 1 match
         [Ubuntu 16.04]
  • uml . . . . 1 match
         uml tool for eclipse : http://www.objectaid.com/
  • volatile . . . . 1 match
          for (int i = 0; i < longArray.length; i++) {
  • whichclass.jsp . . . . 1 match
         Class cls = Class.forName(className);
  • wordpress . . . . 1 match
         ["blog platforms"] >
  • 가운데정렬하기-CssLayout . . . . 1 match
         for ie
  • 객체지향에대한이해 . . . . 1 match
          * Information Hiding : 객체의 데이터는 내부에 숨기고 접근은 오퍼레이션을 통해서만
  • 구글 엔지니어는 이렇게 일한다 - 타이터스 위터스 외 - 202206 . . . . 1 match
          * 정보 섬(information islands)
  • 글자풍경-유지원 . . . . 1 match
         read for: 2019-05 ~ 06
  • 모델링 . . . . 1 match
         [StarUML] : StarUML은 빠르고, 유연하고, 확장가능하며, 풍부한 기능에 Win32 플랫폼에서 무료로 사용할 수 있는 UML/MDA 플랫폼(툴)을 개발하기 위한 오픈 소스 프로젝트입니다. StarUML 프로젝트의 목적은 Rational Rose, Together와 같은 상업적 도구를 비싼 돈을 들여 사용하지 않더라도 그에 준하는 기능을 갖춘 오픈 소스 소프트웨어 모델링 도구 및 플랫폼을 개발하는 것입니다. http://staruml.sourceforge.net/
  • 보안관련용어 . . . . 1 match
         컴퓨터 포렌식(computer forensics, 컴퓨터 법의학)은 전자 증거물 등을 사법기관에 제출하기 위해 데이터를 수집, 분석하고 보고서를 작성하는 일련의 작업을 말한다.
  • 세상에서가장재미있는61가지심리실험인간관계편-이케가야유지 . . . . 1 match
         read for: 2019-04 ~ 06
  • 어떻게살것인가-유시민 . . . . 1 match
         read for: 2019-04
  • 오픈소스소프트웨어활용사례 . . . . 1 match
         정부통신부가 개방형 표준문서 형식인 ODF(Open Document format)를 행정업무용 소프트웨어의 문서표준으로 채택하는 것을 추진하겠다고 밝혀, SW업계에 상당한 파장이 예상된다.....
         = 캘리포니아, 「OpenDocument Format」채용할 듯 =
         캘리포니아 주 역시 매사추세츠 주를 뒤이어, 주의 기관이 사용하는 문서의 표준으로서 「OpenDocument Format」(ODF)을 채용할 가능성이 나왔다.....
  • 우분투 . . . . 1 match
         [Ubuntu]
  • 웹에서업로드스트림형식 . . . . 1 match
         [web upload stream format]
  • 웹표준을준수했을때좋은점 . . . . 1 match
         display more quickly, accessible, flexible and cross-platform
  • 일단오늘한줄써봅시다-김민태 . . . . 1 match
         * read-for: 2019-03 ~ 04
  • 코틀린마이크로서비스개발-후안안토니오 . . . . 1 match
         5.4. RESTful API for CRUD
  • 플랫폼으로서의웹 . . . . 1 match
         attachment:web20AsPlatform.jpg
Found 319 matching pages out of 1798 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2024-02-13 11:30:20
Processing time 1.1511 sec